home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / resin_traversal.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10656);
  10.  script_bugtraq_id(2384);
  11. script_cve_id("CAN-2001-0304");
  12.  script_version ("$Revision: 1.9 $");
  13.  
  14.  name["english"] = "Resin traversal";
  15.  name["francais"] = "Resin traversal";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. It is possible to read arbitrary files on
  20. the remote server by prepending /\../\../
  21. in front on the file name.
  22.  
  23. Solution : Upgrade your version of Resin in 1.2.3
  24. Risk factor : High";
  25.  
  26.  desc["francais"] = "Il est possible de lire
  27. n'importe quel fichier sur la machine distante
  28. en ajoutant des points devant leur noms,
  29. tels que /\../\../
  30.  
  31.  
  32. Solution : Mettez α jour votre version de Resin en 1.2.3
  33. Facteur de risque : ElevΘ";
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "\..\..\file.txt";
  38.  summary["francais"] = "\..\..\file.txt";
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_ATTACK);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  46.  family["english"] = "CGI abuses";
  47.  family["francais"] = "Abus de CGI";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("find_service.nes");
  50.  script_require_ports("Services/www", 8080);
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("http_func.inc");
  59.  
  60. port = get_http_port(default:8080); # by default, Resin listens on this port, not 80
  61. if(get_port_state(port))
  62. {
  63.  req = string("/\\../readme.txt");
  64.  rq = http_get(item:req, port:port);
  65.  soc = http_open_socket(port);
  66.  if(soc)
  67.  {
  68.   send(socket:soc, data:rq);
  69.   r = http_recv(socket:soc);
  70.   http_close_socket(soc);
  71.   if ("This is the README file for Resin(tm)" >< r)
  72.    security_hole(port);
  73.  }
  74. }
  75.